Sindbad~EG File Manager
@extends('seller.layouts.app')
@section('panel_content')
<div class="card">
<div class="card-header d-block d-md-flex">
<h5 class="mb-0 h6">{{ translate('Categories') }}</h5>
<form class="" id="sort_categories" action="" method="GET">
<div class="box-inline pad-rgt pull-left">
<div class="" style="min-width: 200px;">
<input type="text" class="form-control" id="search" name="search"@isset($sort_search) value="{{ $sort_search }}" @endisset placeholder="{{ translate('Type name & Enter') }}">
</div>
</div>
</form>
</div>
<div class="card-body">
<table class="table aiz-table mb-0">
<thead>
<tr>
<th data-breakpoints="lg">#</th>
<th data-breakpoints="lg">{{translate('Icon')}}</th>
<th>{{translate('Name')}}</th>
<th data-breakpoints="lg">{{ translate('Parent Category') }}</th>
<th data-breakpoints="lg" width="15%">{{ translate('Commission Rate') }}</th>
</tr>
</thead>
<tbody>
@foreach($categories as $key => $category)
<tr>
<td>{{ ($key+1) + ($categories->currentPage() - 1)*$categories->perPage() }}</td>
<td>
@if($category->icon != null)
<span class="avatar avatar-square avatar-xs">
<img src="{{ uploaded_asset($category->icon) }}" alt="{{translate('icon')}}">
</span>
@else
—
@endif
</td>
<td class="align-items-center d-flex fw-800">
{{ $category->getTranslation('name') }}
@if($category->digital == 1)
<img src="{{ static_asset('assets/img/digital_tag.png') }}" alt="{{translate('Digital')}}" class="ml-2 h-25px" style="cursor: pointer;" title="DIgital">
@endif
</td>
<td class="fw-600">
@php
$parent = \App\Models\Category::where('id', $category->parent_id)->first();
@endphp
@if ($parent != null)
{{ $parent->getTranslation('name') }}
@else
—
@endif
</td>
<td>
{{$category->commision_rate}} %
</td>
</tr>
@endforeach
</tbody>
</table>
<div class="aiz-pagination">
{{ $categories->appends(request()->input())->links() }}
</div>
</div>
</div>
@endsection
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists