@extends('layouts.admin-layout')
@section('title', 'All Services')
@section('content')
Home Services Section
| Parent Category |
Name |
Slug |
Edit |
Delete |
@foreach($get_services as $service)
|
@if ($service->parentServiceCategory)
{{ $service->parentServiceCategory->name }}
@else
Main Category
@endif
|
{{ $service->name }} |
{{ $service->slug }} |
Edit |
Delete |
@endforeach
@endsection
@section('script')
@endsection