@extends('driver._layout')
@section('body')
Company List:
| Name |
EIN |
Routing |
Accounting |
Status |
|
@foreach($companies as $company)
| {{ $company->name }} |
{{ $company->ein }} |
{{ $company->routing }} |
{{ $company->accounting }} |
{!! $company->active === 1 ? 'active':'disabled'!!} |
|
@endforeach
@endsection
@section('head')
@endsection
@section('script')
@endsection