@extends('Admin.master_page') @section('title')
Customer Services
@endsection @section('content')
@include('Admin.CustomerServices._filter') @foreach ($services as $data) @endforeach
Image English Title Action
{!! $data->icon !!} {{ $data->en_title }}
{{ csrf_field() }} {{ method_field('DELETE') }}
 


{{-- @if (isset($_GET['search']) and $_GET['search'] != null) {{ $services->appends(['search' => $_GET['search']])->links() }} @else {{ $services->links() }} @endif --}} {{ $services->appends(request()->only('search'))->links() }}



@endsection