@extends('layouts.appv2')
@section('content')
Offices & Companies
@if ($message = Session::get('success'))
{{ $message }}
@endif
@if ($message = Session::get('error'))
{{ $message }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
| Office Name |
Action |
@foreach($offices as $office)
| {{$office->office_name}} |
Edit
|
@endforeach
| Company Name |
Company Code |
Action |
@foreach($companies as $company)
| {{$company->company_name}} |
{{$company->company_code}} |
Edit
|
@endforeach
@endsection