@extends('layouts.app') @push('third_party_stylesheets') @include('layouts.datatables_css') @endpush @section('title') Galeri Wisata @endsection @section('content')
@include('flash::message')
{!! Form::open(['route' => 'objekGallery.store', 'enctype'=>"multipart/form-data"]) !!} {!! Form::hidden('objek_id', $objek->id) !!}
Tambah galeri
{!! Form::label('title', 'Title:') !!} {!! Form::text('title', null, ['class'=>'form-control']) !!}
{!! Form::label('image', 'Upload Gambar:') !!}
{!! Form::close() !!}
@foreach ($gallery as $item) @endforeach
Title Gambar Aksi
{{ $item->title }}
@endsection @push('third_party_scripts') @include('layouts.datatables_js') @endpush