@extends('apex-layouts.main') @section('title','Meal Plans List') @section('header-right') Total:  {{ $mealplans->total() }} @endsection @section('content')
@foreach($mealplans as $mealplan) @endforeach
# title Avail Days Avail Calories Amount MealPlan Type Status Action
{{$mealplan->id}} {{$mealplan->title}}

{!! $mealplan->category !!}

{{$mealplan->availDays}} {{$mealplan->availCalories}} PKR {{$mealplan->amount}} notActive
@method('POST') @csrf
@if($mealplans->total() > $mealplans->perPage()) @endif
@endsection @section('styles') @stop