@extends('layouts.teacher') {{ config('app.name', 'Laravel') }} | Teacher | Planner @section('main-content')
@if(Session::has('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Records / Plan

Plan
@if(count($mealPlans) != 0) @foreach($mealPlans as $key => $mealPlan) @endforeach @else @endif
# Pdf Title Start Date End Date Action
{{ $key+1 }} {{$mealPlan->file}} {{$mealPlan->title}} {{date('d-m-Y',strtotime($mealPlan->start_date))}} {{date('d-m-Y',strtotime($mealPlan->end_date))}}
@csrf @method('DELETE')
{{ 'No record found' }}
@endsection