@foreach($oceanFreightFee as $freightFee) @php if ($freightFee->maritimeValidadeTo < date('Y-m-d') ){ echo ' '; } else { echo ''; } @endphp @endforeach
Operation ID Carrier Equipment Type Code Description POL POD Cargo Type Product Fee Type Currency Fee Com. Link Amount Valid From Valid To Status
@can('update', App\Usuario::class) @if($freightFee->maritime_quote_codes->FeeType == 'Origin') @else @endif @endcan @can('delete', App\Usuario::class) @endcan {{ $freightFee->id }} {{ $freightFee->carriers->descricao}} {{ isset($freightFee->container_types->descricao) ? $freightFee->container_types->descricao : 'All'}} {{ isset($freightFee->maritime_quote_codes->code) ? $freightFee->maritime_quote_codes->code : '-'}} {{ str_limit($freightFee->maritime_quote_codes->descricao, $limit = 30, $end = '...') }} {{ $freightFee->loading_ports->descricao}} {{ isset($freightFee->code_of_ports1->code) ? $freightFee->code_of_ports1->code : 'All'}} {{ isset($freightFee->code_of_ports1->place) ? (',' . $freightFee->code_of_ports1->place) : '' }} {{ isset($freightFee->cargo_types->descricao) ? $freightFee->cargo_types->descricao : '-'}} {{ isset($freightFee->platforms->descricao) ? $freightFee->platforms->descricao : 'All'}} {{ isset($freightFee->maritime_quote_codes->FeeType) ? $freightFee->maritime_quote_codes->FeeType : '-'}} {{ isset($freightFee->maritime_quote_codes->currencies->descricao) ? $freightFee->maritime_quote_codes->currencies->descricao : '-'}} {{ isset($freightFee->maritime_quote_codes->maritime_quote_classes->classe)? $freightFee->maritime_quote_codes->maritime_quote_classes->classe : '-'}} {{ $freightFee->price}} {{ date( 'd-m-Y' , strtotime($freightFee->maritimeValidadeFrom))}} {{ date( 'd-m-Y' , strtotime($freightFee->maritimeValidadeTo))}} @if (isset($freightFee->status)&&$freightFee->status == "Ativo") @else @endif
@include('bibliotecas.floattheadOverflow')