@extends('admin.layouts.master')
@section('title', 'Dashboard')
@section('content')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
S.No |
Service |
Category |
Service Type |
Action |
@foreach ($data as $row )
{{$loop->index+1}} |
{{$row->name}} |
{{$row->category->name}} |
@if($row->type == 'physically')
physical
{{-- {{$row->type}} --}}
@elseif ($row->type == 'remotely')
remote
@endif
|
Edit
Delete
|
@endforeach
@endsection
@section('scripts')
{{-- add model --}}
{{-- add model end --}}
@endsection