@extends('layouts.admin') @section('content')
{{ trans('cruds.fuelInfo.fuel_name') }} | {{ $fuelInfo->fuel->fuel_name ?? '' }} |
---|---|
{{ trans('cruds.fuelInfo.branch') }} | {{ $fuelInfo->siteRegister->name ?? ''}} |
{{ trans('cruds.fuelInfo.cost_price') }} | {{ $fuelInfo->cost_price }} |
{{ trans('cruds.fuelInfo.selling_price') }} | {{ $fuelInfo->selling_price }} |
{{ trans('cruds.fuelInfo.eff_from') }} | {{ date('d-m-Y',strtotime($fuelInfo->effective_from)) }} |
{{ trans('cruds.fuelInfo.eff_to') }} | {{ $fuelInfo->effective_to != null ? date('d-m-Y',strtotime($fuelInfo->effective_to)) : '' }} |
{{ trans('cruds.fuelInfo.status') }} | {{ $fuelInfo->status ? 'Active' : 'Inactive' }} |