@if(Session::has('success'))
×{{ Session::get('success') }}
@endif
@if(Session::has('error'))
{{ Session::get('error') }}
@endif
Parent Companies List
Add
| # |
Sorting |
Parent Company Name |
Status |
Action |
@php $i=1;@endphp
@foreach($parentCompanies as $company)
| {{$i++}} |
{{$company->sorting}} |
{{$company->company_name}} |
@if($company->status == 1) Active @else In-Active@endif |
|
@endforeach
@endsection