@extends('layouts.Master') @section('page')

{{$page_title}}

add New Events
@if($data) @foreach($data as $key=>$value)
@if(!empty($value->image)) Card image cap @endif

{{$value->event_title?$value->event_title:'Null'}}

{{Str::limit($value->event_description, $limit = 100, $end = '...') }}

{{--
$1,230/mo 34 SALES
--}}
@if($value->status == 1)
Published
@else
Draft
@endif
@endforeach @else

No Data Found

@endif
@endsection @push('script') @endpush