@extends('layout.store_layout.master') @push('custom_css') @endpush @section('content')
get('type','all') == 'all' ||is_null( request()->get('type'))?'selected':''}}> @lang('admin.filter_by_type')
@foreach($pocketTypes as $type)
get('type')) && request()->get('type') == $type->getKey() ? 'selected':''}}> {{ $type->name }}
@endforeach
get('status','all') == 'all' ||is_null( request()->get('status'))?'selected':''}}> @lang('admin.filter_by_status')
get('status')) && request()->get('status') == 'activated' ? 'selected':''}}> @lang('admin.active')
get('status')) && request()->get('status') == 'deactivated' ? 'selected':''}}> @lang('admin.inactive')
@forelse($items as $item)
{{ optional($item->pocketType)->name }}
{{ $item->name }}
{{--
Some quick example text to build on the card title and make up the bulk of the card's content.
--}} {{--
@lang('admin.active')
--}}
store_form_status ? 'checked' : '' }} data-id="{{$item->getKey()}}"/>
@lang('admin.activate')
@empty
@lang('admin.no_data_found')
@endforelse
@include('pages.store_admin.general_partials.custom_pagination',['items'=>$items])
@endsection @push('custom_js') {{----}} @endpush