@extends('backend.layouts.app') @section('content')
@csrf @if(isset($editData) && !empty($editData)) @method('PUT') @endif

@if(isset($editData) && !empty($editData)) Update Service @else New Service @endif

Service List

@foreach($products as $category) @endforeach
Serial Member Cat Service Name Price Action
{{$loop->index + 1}} {{$category->name}} {{$category->service_name}} {{$category->price}}
@csrf @method('DELETE')
@endsection @section('page_script') @endsection