@extends('admin.layouts.app') @section('title', 'Products') @section('content')

{{__('Products')}}

{{__('All Products listing')}}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if(!empty($products)) @foreach($products as $k => $datas) @endforeach @else @endif
ID Title Priority Category Brand Status Date Action
{{$k+1}} {{$datas->title}} {{$datas->priority}} {{categoryTitle($datas->category_id)}} {{brandTitle($datas->brand_id)}} @if($datas->status=='1') Activated @else De-Activated @endif {{ dateConvertFormat($datas->created_at) }} Edit Delete
{{__('No record found')}}
@endsection