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

Dashboard

Plans Management Create New
{{--

Personal accounts list where admin can edit, update and delete their records.

--}} @if(session('success'))
{{ session('success') }}
@endif @foreach($plans as $plan) @endforeach
ID Title Days Price Status Trial Days Plan Type Actions
{{ $plan->id }} {{ $plan->title }} {{ $plan->days }} {{ $plan->price }} {{ $plan->status ? 'Active' : 'Inactive' }} {{ $plan->trial_days }} {{ ucfirst($plan->plan_type) }} View Edit
@csrf @method('DELETE')
@endsection