@extends('admin.layouts.default') @section('header_styles') @stop @section('content')

@yield('title', 'Products Genre')

@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@foreach($productsGenre as $i=>$genre) @endforeach
# @sortablelink('Products genre Names') @sortablelink('status')
{{ $i+1 }} {{ $genre->products_genres_names }} @if($genre->status == 1) {{ 'Active' }} @else {{ 'In active' }} @endif
@csrf @method('DELETE')
{!! $productsGenre->appends(\Request::except('page'))->render() !!}
@stop @section('footer_scripts') @stop