@extends('layouts.admin') @section('content')
{{ __('Services List') }}
{{ __('Add New Service') }}
@if(Session::has('success'))
{{ Session::get('success') }}
@endif
@foreach($services as $service) @endforeach
{{ __('Icon') }} {{ __('Title') }} {{ __('Description') }} {{ __('Options') }}
{{ $service->title }} {{ Str::limit($service->description, 50) }}
@csrf @method('DELETE')
@endsection