{{-- resources/views/representatives/index.blade.php --}} @extends('layouts.app') @section('content')

Representatives

Add New Representative @foreach ($representatives as $representative) @endforeach
ID Name Department Branch District Region Actions
{{ $representative->id }} {{ $representative->user->name }} {{ $representative->department->name }} {{ $representative->branch->name }} {{ $representative->district->name }} {{ $representative->region->name }} View Edit
@csrf @method('DELETE')
@endsection