@extends('layouts.master') @section('title', 'Souvenir List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title')
Souvenir List
@foreach ($products as $i => $item) @endforeach
No. Image Code Name Description Price Quantity Weight Type Status Manage
{{ ++$i }} @if ($item->product_image) Product Image @else No Image @endif {{ $item->product_code }} {{ $item->product_name }} {{ $item->product_description ?? '-'}} {{ $item->product_price }} {{ $item->product_quantity }} {{ $item->product_weight ?? '-' }} {{ $item->product_type_name }} @if ($item->product_status == 1) Active @else Inactive @endif
@include('layouts.footer') @endsection