@extends('layouts.list')
@section('title')
{{ config('app.name') }} Backend | Hotel
@endsection
@section('breadcrumb')
Master Data
Hotel
@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')
| Photo |
Name |
Star |
Created at |
Action |
@foreach ($hotel as $row)
 . '/images/hotel/'.$row->cover_media }}) |
{{ $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") |
|
@endforeach
@endsection