@extends('layouts.app', ['title' => __('List Services')]) @section('content') @include('users.partials.header', [ 'title' => __('Hello') . ' '. auth()->user()->name, 'description' => __('This is your profile page. You can see the progress you\'ve made with your work and manage your projects or assigned tasks'), 'class' => 'col-lg-7' ])

{{ __('List Services') }}

@if (session('msg')) @endif
@foreach($services as $service) @method('delete') @csrf @endforeach
{{__('Name Arabic')}} {{__('Name English')}} {{__('Delete')}} {{__('Edit')}}
{{$service->head_ar}} {{$service->head_en}}
@include('layouts.footers.auth')
@endsection