@extends('layouts.app') @section('content')
@csrf
{{__('Type')}}
{{__('Genre')}}
{{__('Released')}}
{{__('Country')}}
@foreach(config('attr.types') as $key => $title)
@endforeach
@foreach(\App\Models\Genre::get() as $genre)
@endforeach
@php $currentYear = date('Y'); @endphp @for($i = $currentYear; $i >= ($currentYear - 5); $i--)
@endfor
@foreach(\App\Models\Country::where('filter','active')->get() as $country)
@endforeach
{{__('Prev')}}
{{__('Next')}} {{__('Complete')}}
@endsection