@extends('layouts.list') @section('title') {{ config('app.name') }} Backend | Hotel @endsection @section('breadcrumb') @endsection @section('tableform')
@endsection @section('table_order_column') 1 @endsection @section('table_order_sort')'asc'@endsection @section('table_column_defs') { "width": "200", "targets": 0 }, { "width": "150", "targets": 3 }, { "width": "100", "targets": 4 } @endsection @section('tablecontent') @foreach ($hotel as $row) @endforeach
Photo Name Star Created at Action
{{ $row->name }} @for ($i = 0; $i < $row->rating; $i++) @endfor @for ($r = 0; $r < (5-$row->rating); $r++) @endfor @date($row->created_at, "d M Y H:i")
  • @csrf @method('DELETE')
@endsection