@extends('layouts.admin') @section('title', 'Services') @section('page-title', 'Manage Services') @section('content')
Add New Service
@forelse($services as $service) @empty @endforelse
Title Status Featured Actions
{{ $service->title_en }}
{{ Str::limit($service->description_en, 60) }}
@if($service->is_active) Active @else Inactive @endif @if($service->is_featured) @else @endif Edit
@csrf @method('DELETE')

No services found

@if($services->hasPages())
{{ $services->links() }}
@endif
@endsection