@extends('adminlte::page') @section('title', '個人イベント一覧') @section('content_header')

個人イベント一覧

@stop @section('content')
{{ Form::open(['id' => 'search-form', 'method' => 'get']) }}
{{ Form::select('limit', [10 => 10, 20 => 20, 50 => 50, 75 => 75, 100 => 100, 200 => 200, 500 => 500], $request['limit'] ?? null, ['class' => 'form-control margin-r-5', 'placeholder' => '選択してください']) }} {{ Form::text('query', $request['query'] ?? null, ['class' => 'form-control margin-r-5']) }} {{ Form::submit('検索', ['class' => 'btn btn-default']) }}
{{ Form::close() }}

個人イベント管理

{{ $events->total() }}件中 {{ $events->firstItem() }}-{{ $events->lastItem() }}件
{{ $events->appends(request()->input())->links() }}
@foreach($events as $event) @endforeach
詳細 編集 タイトル 投稿者 開始時間 終了時間
詳細 編集 {{ $event->title }} {{ $event->user_name }} {{ $event->datestart }} {{ $event->timestart }} {{ $event->dateend }} {{ $event->timeend }}
@endsection @section('js') @endsection @push('css') @endpush