@extends('admin.layouts.app') {{-- @push('style') @endpush --}} {{-- @section('pagetitlesection') @endsection --}} @section('content')

Products

@foreach ($listProducts as $products) @endforeach
Product Title Product Name Product Category Product Description Created On Status Action
{{ $products->title }} {{ $products->name }} {{ $products->category ? $products->category->name : '--' }} {{ ($products->description!="")?substr($products->description, 0,50).'...':'' }} {{ date('d-m-Y', strtotime($products->created_at)) }} @switch($products->is_active) @case(1) Active @break @case(0) Inactive @break @default Deleted @endswitch
@endsection @push('scripts') {{-- --}} @endpush