@extends('layouts.back-end.app') @section('title', translate('collection')) @section('content')

{{ translate('collection_Setup') }}

@csrf
@foreach($languages as $lang)
@endforeach
* {{ THEME_RATIO[theme_root_path()]['Collection Image'] }}
{{ translate('collection_list') }} {{ $collections->total() }}
@foreach($collections as $key => $collection) @endforeach
{{ translate('ID') }} {{ translate('name') }} {{ translate('Category') }} {{ translate('status') }} {{ translate('Products') }} {{ translate('action') }}
{{ $collection['id'] }} {{ $collection['defaultname'] }} {{ $collection->category->defaultname }}
@csrf
{{ $collections->links() }}
@if(count($collections) == 0) @include('layouts.back-end._empty-state',['text'=>'no_collection_found'],['image'=>'default']) @endif
@endsection @push('script') @endpush