@extends('admin.admin_dashboard')
@section('admin')
@if (Auth::user()->can('level.add'))
Add Level
@endif
| Sl |
Product Level |
Action |
@foreach($levels as $key => $level)
| {{ $key+1 }} |
{{ $level->level_name }} |
@if (Auth::user()->can('level.edit'))
Edit
@endif
@if (Auth::user()->can('level.delete'))
Delete
@endif
|
@endforeach
| Sl |
Product Level |
Action |
@endsection