@extends('owner._layout') @section('body')
Company List:
@if($companies->isEmpty()) @else @foreach($companies as $company) @endforeach @endif
Name EIN Routing Accounting Status
You have not set up any company yet
{{ $company->name }} {{ $company->ein }} {{ $company->routing }} {{ $company->accounting }} {!! $company->active === 1 ? 'active':'disabled'!!}
@endsection @section('head') @endsection @section('script') @endsection