@extends('admin.layouts.app') @section('title') Plan @endsection @section('css') @endsection @section('contents')
Add New Plan
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if(isset($plans)) @php $i = 1; @endphp @foreach($plans as $plan) @endforeach @endif
S/N Name Category Price Interval description Status Action
S/N Name Category Price Interval description Status Action
{{ $i++ }} {{ $plan->name }} {{ $plan->category->name }} ${{ $plan->cost }} {{ $plan->interval }} {{ $plan->description }} {{ $plan->status }} View Items {{-- Delete--}}
@endsection @section('js') @endsection