@extends('layout.app') @section('title') Manage Assets @endsection @section('pagetitle') Manage Assets @endsection @section('content')
@include('includes.success')
@foreach ($assets as $asset) @endforeach
Sn Asset Type Date Purchased Price Purchased Replacement Value Serial No Brought From
{{$i+1}} {{ucwords($asset->assettype->name)}} {{date('d/m/Y',strtotime($asset->purchase_date))}} {{number_format($asset->purchase_price)}} {{number_format($asset->replacement_value)}} {{$asset->initial."-".$asset->serial_number}} {{$asset->bought_from}} Edit Delete
@endsection @section('scripts') @endsection