@extends('layouts.master') @section('title', 'View Tariff - ') @section('content')

View Tariff

Tariff Information
Lawyer:
{{ $tariff->lawyer?->full_name ?? $tariff->lawyer_id }}
Service Code:
{{ $tariff->service_code }}
Service Name:
{{ $tariff->service_name }}
Category:
{{ $tariff->service_category }}
Billing Method:
{{ $tariff->billing_method }}
Rate Type:
{{ $tariff->rate_type }}
Rate Amount:
{{ $tariff->rate_amount }} @if($tariff->currency?->currency_code) {{ $tariff->currency->currency_code }} @endif
Description:
{{ $tariff->description }}
Created At:
{{ $tariff->created_at->format('Y-m-d H:i:s') }}
Updated At:
{{ $tariff->updated_at->format('Y-m-d H:i:s') }}
Edit Back to Tariffs
@endsection