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

Ad Plans

Ads Plan
@can('plans-create') Create Plan @endcan
@foreach($plans as $plan) @endforeach
Sl. No Name Duration Price Currency Status Actions
{{ $loop->iteration }} {{ $plan->name }} {{ $plan->duration }} {{ $plan->price }} {{ $plan->currency }}
status == 1 ? 'checked' : ''}} />
@if(auth()->user()->can('plans-edit') || auth()->user()->can('plans-delete')) @endif
@endsection @section('script') @endsection