@extends('layouts.app') @section('page-title', __('Assets')) @section('page-heading', __('Assets')) @section('breadcrumbs') @stop @section('content') @include('partials.messages')
@if (Request::has('search') && Request::get('search') != '') @endif
@if(auth()->user()->hasRole('Admin')) @endif
@if (count($assets)) @foreach ($assets as $asset) @endforeach @else @endif
@lang('Asset Name') @lang('Category') @lang('Total') @lang('Available') @lang('Action')
{{ $asset->name }} {{ ucfirst($asset->category) }} {{ $asset->number_of_items }} {{ $asset->remainder }}
@csrf @method('DELETE')
@lang('No records found.')
{!! $assets->links() !!} @stop @section('scripts') @stop