| Cliente |
Línea |
Precio/kg |
Vigencia |
Estado |
Acciones |
@forelse ($tariffs as $tariff)
| {{ $tariff->client ? ($tariff->client->business_name ?: $tariff->client->contact_name) : 'General' }} |
{{ $tariff->serviceLineLabel() }} |
${{ number_format($tariff->price_per_kg, 0, ',', '.') }} |
{{ $tariff->valid_from->format('d-m-Y') }}
—
{{ $tariff->valid_to?->format('d-m-Y') ?? 'indefinido' }}
|
@if ($tariff->isCurrentlyValid())
Vigente
@else
No vigente
@endif
|
|
@empty
|
No hay tarifas registradas aún.
|
@endforelse
{{ $tariffs->links() }}