Filters
View Filter Values Add Filter Column {{-- Displaying The Validation Errors: https://laravel.com/docs/9.x/validation#quick-displaying-the-validation-errors AND https://laravel.com/docs/9.x/blade#validation-errors --}} {{-- Determining If An Item Exists In The Session (using has() method): https://laravel.com/docs/9.x/session#determining-if-an-item-exists-in-the-session --}} {{-- Our Bootstrap success message in case of updating admin password is successful: --}} @if (Session::has('success_message'))
Success: {{ Session::get('success_message') }}
@endif
{{-- DataTable --}}
{{-- using the id here for the DataTable --}}
ID | Filter Name | Filter Column | Categories | Status |
---|---|---|---|---|
{{ $filter['id'] }} | {{ $filter['filter_name'] }} | {{ $filter['filter_column'] }} |
@php
$catIds = explode(',', $filter['cat_ids']);
// echo '', var_dump($catIds), ''; foreach ($catIds as $key => $catId) { $category_name = \App\Models\Category::getCategoryName($catId); echo $category_name . ' '; } @endphp |
@if ($filter['status'] == 1) {{-- Using HTML Custom Attributes. Check admin/js/custom.js --}} {{-- Icons from Skydash Admin Panel Template --}} @else {{-- if the admin status is inactive --}} {{-- Using HTML Custom Attributes. Check admin/js/custom.js --}} {{-- Icons from Skydash Admin Panel Template --}} @endif |