@php
$user = auth()->user();
@endphp
@extends('seller.layouts.app')
@section('title')
{{ __('msg.categorylist') }} | Seller
@endsection
@section('content')
| SL. |
{{ __('msg.name') }} |
{{ __('msg.icon') }} |
Create |
Icon Image |
@if ($user->can('category.edit') || $user->can('category.delete'))
{{ __('msg.action') }} |
@endif
@foreach ($categories as $key => $category)
|
{{ $key + 1 }}
|
{{ $category->name }}
|
({{ $category->icon }})
|
{{ $category->admin->name }}
|
{{-- --}}
{{-- --}}
|
{{-- @if ($user->can('category.edit') || $user->can('category.delete')) --}}
{{-- @if ($user->can('category.edit'))
@endif --}}
{{-- --}}
{{-- @if ($user->can('category.edit'))
@endif --}}
|
{{-- @endif --}}
@endforeach
@endsection
@section('style')
@endsection
@section('script')
@endsection