@include('layouts.header') @include('layouts.sidebar')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
@if(hasPermission('warehouse', 'update') || hasPermission('warehouse', 'delete')) @endif @foreach($warehouses as $row) @if(hasPermission('warehouse', 'update') || hasPermission('warehouse', 'delete')) @endif @if(hasPermission('warehouse', 'status')) @endif @endforeach
ActionWarehouse City Address Phone No Capacity Status
@if(hasPermission('warehouse', 'update')) @endif @if(hasPermission('warehouse', 'delete')) @endif
{{ $row->warehouse_name}} {{ $row->city}} {{ $row->address}} {{ $row->phone_no}} {{ $row->capacity}} @if($row->status==1)Active@else Inactive @endif
@include('layouts.footer')