@extends('admin.layout.master') @section('custom_style') @endsection @section('content')
| Lost/Found No. | {{ $info->lf_number }} | Type | {{ $info->type == 1 ? 'Lost' : 'Found' }} | Date | {{ date('d-m-Y', strtotime($info->date)) }} |
|---|---|---|---|---|---|
| Lost/Found By | {{ $info->lf_by_type == 1 ? 'Employee' : $info->getGuest->name.' (Guest)' }} | Location | {{ $info->location }} | Item | {{ $info->item }} |
| Status | {{ $info->return_to_type ? 'Returned' : 'Not Returned' }} | Remarks | |||
| Return To | {{ $info->lf_by_type == 1 ? 'Employee' : $info->getReturnGuest->name.' (Guest)' }} | Return Date | {{ date('d-m-Y', strtotime($info->return_date)) }} | Return Remarks | {{ $info->return_remarks }} |