@extends('includes.main') @section('main-container')
{{ session()->get('message') }}
| Product | Quantity | Sale Price | Total | Date | Action |
|---|---|---|---|---|---|
| {{ $extra->title }} | {{ $extra->quantity }} | {{ $extra->sale_price }} | {{ $extra->sale_price * $extra->quantity }} | {{ substr($extra->created_at, 0,10) }} |
{!! btnEdit('extra.edit', 'extra.update', $extra->id) !!}
{!! btnDelete('extra.destroy', 'extra_stocks', $extra->id) !!}
|