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

Operators

Add New Operator
@forelse($operators as $operator)

{{ $operator->name }}

@if($operator->description)

{{ $operator->description }}

@endif
{{ $operator->created_at->format('M j, Y') }} {{ $operator->is_active ? 'Active' : 'Inactive' }}
Edit
@csrf @method('DELETE')
@empty
No operators found.
@endforelse
@if($operators->hasPages())
{{ $operators->links() }}
@endif
@endsection