@extends('layouts.app') @section('header-title', __('Product List')) @section('content')

{{ __('Product List') }}

@hasPermission('shop.product.create') @endhasPermission
@if ($flashSale)
{{ $flashSale->name }}
{{ __('Coming Soon') }}
{{ __('Days') }}
00
{{ __('Hours') }}
00
{{ __('Minutes') }}
00
{{ __('Seconds') }}
00
@hasPermission('shop.flashSale.show') Add Product @endhasPermission
@endif
@if (request('view_type') == 'list') @include('shop.product.listView') @else @include('shop.product.gridView') @endif
{{ $products->links() }}
@endsection @push('scripts') @if ($flashSale) @endif @endpush @push('css') @endpush