@extends('template.layout')
@section('style')
@endsection
@section('content')
{{-- success message --}}
@if (session('success'))
{{ session('success') }}
@endif
{{-- error message --}}
@if (session('error'))
@endif
{{-- warninig message --}}
@if (session('warning'))
@endif
Back
Create
| # |
Code |
Name |
Contact |
Email |
Action |
@foreach ($branches as $branch)
| {{ $loop->iteration }} |
{{ $branch->code }} |
{{ $branch->name }} |
{{ $branch->mobile . '/' . $branch->land }} |
{{ $branch->email }} |
|
@endforeach
{{ $branches->links() }}
@endsection
@section('script')
@endsection