@extends('admin.layout.base') @section('title', 'Lost Items ') @section('content')
@if(Setting::get('demo_mode', 0) == 1)
** Demo Mode : @lang('admin.demomode')
@endif
@lang('admin.lostitem.title')
@can('lost-item-create') @lang('admin.lostitem.add') @endcan @foreach($lostitem as $index => $lost) @endforeach
@lang('admin.id') @lang('admin.lostitem.lost_id') @lang('admin.lostitem.lost_user') @lang('admin.lostitem.lost_item') @lang('admin.lostitem.lost_comments') @lang('admin.lostitem.lost_status') @lang('admin.action')
{{ $index + 1 }} {{ $lost->request_id }} {{ $lost->user_id }} {{ $lost->lost_item_name }} {{ $lost->comments }} @if($lost->status=='open') Open @else Closed @endif @if( Setting::get('demo_mode', 0) == 0) @can('lost-item-edit') @if($lost->status=='open') Edit @endif @endcan @endif
@lang('admin.id') @lang('admin.lostitem.lost_id') @lang('admin.lostitem.lost_user') @lang('admin.lostitem.lost_item') @lang('admin.lostitem.lost_comments') @lang('admin.lostitem.lost_status') @lang('admin.action')
@endsection