@extends('layouts.app', ['activePage' => 'branches', 'titlePage' => __('')])
@section('content')
| {{__("jamia.sl_no")}} |
{{__("jamia.name")}} |
{{__("jamia.branch")}} |
{{__("jamia.address")}} |
{{__("jamia.cust_phone")}} |
{{__("jamia.hours")}} |
{{__("jamia.image")}} |
{{__("jamia.action") }} |
@foreach ($branches as $branche)
| {{ $i++; }} |
{{ $branche->name }} |
@if($branche->branch_categories_id > 0 && isset($branche->branchCategory))
{{ $branche->branchCategory->name}}
@endif
|
{{ $branche->address }} |
{{ $branche->phone}} |
{{ $branche->hours}} |
|
|
@endforeach
@endsection
@section('js')
@endsection