@extends('layouts.template')
@section('content')
{{ Session::get('flash_message') }} Parts Control
@if(Session::has('flash_message'))
Parts Control :-
Add Item Creation Alternative Part
{!! Form::open(['url' => '/store/part-control/item-creation/store','id'=>'itemform', 'files' => true]) !!}
{!! Form::close() !!}
@permission('item-creation-list')
@foreach($itemcreation as $item)
Part ID
Part Name
Part Make
Part Number
Category
Alert Qty
Alternative
Product Image
@endforeach
@else
{{ $item->part_id }}
{{ $item->part_name }}
{{ $item->part_make ? $item->part_make : 'N/A' }}
{{ $item->part_number }}
{{ $item->category }}
{{ $item->quantity }}
{{ $item->alternativeItem->count() }}
@endpermission
You Dont Have Permission To View List Of Item Creation
Current Status Stock Report
@foreach($data as $d)
Part Name
Part ID
Equipment
Make
Model
Category
Part Number
Location
Stock Qty
Alert Qty
Price
Date Update
Product Image
@endforeach
{{ $d->part_name }}
{{ $d->part_id }}
{{ $d->equipment }}
{{ $d->make }}
{{ $d->model }}
{{ $d->category }}
{{ $d->part_number }}
{{ $d->location }}
{{ $d->stock_in_quantity - $d->stock_out_quantity }}
{{ $d->quantity }}
@if($d->price)
{{ number_format($d->price, 2, '.', ',') }}
@else
{{ $d->price }}
@endif
{{ $d->updated_at ? Helper::convert_to_ddmmyyhis($d->updated_at) : Helper::convert_to_ddmmyyhis($d->created_at) }}