@extends('admin.layouts.master')
@section('title','branch Page')
@section('content')
Table
| # |
Created At |
English Address |
Arabic Address |
Email |
Phone |
Fax |
Action |
@foreach($branches as $branch)
| {{$loop->iteration}} |
{{$branch->created_at->format('Y-m-d')}} |
{{$branch->address_en}} |
{{$branch->address_ar}} |
{{$branch->email}} |
{{$branch->phone}} |
{{$branch->fax}} |
|
@endforeach
{{$branches->appends($_GET)->links()}}
@endsection