@extends('layouts.app') @section('content')
{{ isset($place->name) ? $place->name : 'Place' }}
{{ csrf_field() }}
ชื่อสถานที่
: {{ $place->name }}
ผู้เพิ่มข้อมูล
: {{ optional($place->user)->name }}
ข้อมูลสถานที่
{!! $place->detail !!}
วันที่เพิ่มข้อมูล
: {{ $place->created_at }}
วันที่ปรับปรุงข้อมูล
: {{ $place->updated_at }}
@endsection