@extends('layouts.app')
@section('title')
Price List
@stop
@section('breadcrumb')
- Home
@permission('list-inventory')
- All Price List
@endpermission
@stop
@section('content')
All Price Lists
# |
Price List No. |
Project Type |
Action |
@foreach ($allpricelist as $p)
{{ $count++ }} |
{{ $p->l_no }} |
{{ $p->projecttype ? $p->projecttype->name : 'NIL' }} |
{{-- --}}
|
@endforeach
@stop
@section('js')
@stop