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

plans List

{{--
Show
entries
Search:
--}} @foreach ($plans as $plan) @endforeach
#. Plan Description Price Duration Created At Status Featured
{{ $loop->iteration }} {{ $plan->name }} {!! $plan->description !!} {{$plan->price}} {{$plan->duration}} days {{ $plan->created_at }} @if ($plan->status == 1) @else @endif @if ($plan->show_front == 1) Yes @else No @endif
@include('includes.admin_footer')
@endsection @section('scripts') @endsection