@extends('admin/layouts/default')
{{-- Page title --}}
@section('title')
stocks List
@parent
@stop
{{-- page level styles --}}
@section('header_styles')
@stop
{{-- Page content --}}
@section('content')
ID |
Product |
Quantity |
Current Stock |
Store |
Status Code |
Actions |
@foreach ($stocks as $stock)
{!! $stock->id !!} |
{!! $stock->product->name !!} |
{!! $stock->quantity !!} |
{!! $stock->current_stock !!} |
{!! $stock->store->name !!} |
{!! $stock->status->name !!} |
|
@endforeach
@stop
{{-- page level scripts --}}
@section('footer_scripts')
@stop