@extends('layouts.app') @section('content')

Lista de Eventos

Criar Novo Evento
@if (session('success'))
{{ session('success') }}
@endif @foreach($schedules as $schedule) @endforeach
Título Local Descrição Data Imagem Ações
{{ $schedule->title }} {{ Str::limit($schedule->location, 20) }} {{ Str::limit($schedule->description, 10) }} {{ \Carbon\Carbon::parse($schedule->date)->format('d/m/Y H:i') }} @if ($schedule->image) @endif
@csrf @method('DELETE')
@endsection