@extends('layouts.admin.base-dashboard')
@section('title', 'List Branch')
@section('content')
@include('layouts.admin.include.message')
List Branch
No |
Name |
Location |
Store |
|
@foreach ($branches as $branch)
{{ $loop->iteration }} |
{{ $branch->name }} |
{{ $branch->location }} |
{{ $branch->store->name }} |
Edit
|
@endforeach
@if($branches->count() == 0)
No data available. |
@endif
@endsection