@extends('layouts.app') @section('content')

{{ app()->getLocale() == 'ar' ? 'إدارة المخالفات' : 'Violations Management' }}

@foreach($violations as $violation) @endforeach
Contract Customer Description Amount Status Action
{{ $violation->rental->contract_number }}
{{ $violation->rental->car->title }}
{{ $violation->rental->customer->name }} {{ $violation->description }} {{ number_format($violation->amount, 2) }} SAR {{ strtoupper($violation->status) }}
@csrf @method('PATCH')
{{ $violations->links() }}
@endsection