@extends('adminlte::page') @section('title', 'Tolly Fest Point') @section('content_header') @stop @section('content')

Tolly Fest Point

List of Tolly Fest Point

@if (Session::has('error'))

{{ session()->get('error') }}

@elseif (session()->has('success'))
Well done !!!

{{ session()->get('success') }}

@endif
@if(!empty($tollyFestPoints)) @foreach ($tollyFestPoints as $notice) @endforeach @endif
Point Title Date PDF File Start Date & Time End Date & Time Status Actions
{{ $notice->point_title }} {{ optional($notice->date)->format('Y-m-d') }} @if($notice->file) @else N/A @endif {{ optional($notice->start_date_time)->format('Y-m-d') }} {{ optional($notice->end_date_time)->format('Y-m-d') }} @if ($notice['status'] == 1) Active @else Inactive @endif
     
Point Title Date PDF File Start Date & Time End Date & Time Status Actions
@stop @section('js') @include('admin.tolly_fest_point.scripts.index') @stop