@extends('includes.layouts.admin') @section('page-title') Add-on Service List @endsection @section('content')

Add-on Service List

{{-- --}}
 
{{-- --}} Clear  
@forelse ($addonservicelist as $index => $service) @php if ($service->add_on_type!=null) { $addOnArr = json_decode($service->add_on_type); $service->add_on_type = implode(', ', $addOnArr); } @endphp @empty @endforelse
Serial No Name Description Price Add-On Type Action
{{ $index+1 }} {{ $service->service_name}} {{ $service->short_desc }} {{ $service->price }} {{ $service->add_on_type}}
No Record Found.
{{-- @if ($users->hasPages()) --}} {{-- @endif --}}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@endsection @section('scripts') @include('admin.commonScript.script') @endsection