@extends('themes::ripple.layout') @php $years = Cache::remember('all_years', \Backpack\Settings\app\Models\Setting::get('site_cache_ttl', 5 * 60), function () { return \VsMov\Core\Models\Movie::select('publish_year') ->distinct() ->pluck('publish_year') ->sortDesc(); }); @endphp @section('content')

{{ $section_name ?? 'Danh Sách Phim' }}

@if (count($data)) @php $key_section = 0; @endphp
@foreach ($data ?? [] as $key => $movie) @include('themes::ripple.inc.movie_card') @endforeach
@else

Rất tiếc, không có nội dung nào trùng khớp yêu cầu.

@endif {{ $data->appends(request()->all())->links("themes::ripple.inc.pagination") }} @endsection