@extends("admin.admin_app") @section("content")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($genres_list as $i => $genres) @endforeach
{{trans('words.genre_title')}} {{trans('words.status')}} {{trans('words.action')}}
{{ stripslashes($genres->genre_name) }} @if($genres->status==1){{trans('words.active')}} @else{{trans('words.inactive')}}@endif
@include("admin.copyright")
@endsection