@extends('admin.layouts.master') @section('title', 'Instructor Plan - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
# | {{ __('Image') }} | {{ __('Plan Name') }} | {{ __('Status') }} | {{ __('Action') }} |
---|---|---|---|---|
1 | @if($plan['preview_image'] !== NULL && $plan['preview_image'] !== '') @else @endif | {{$plan->title}} | @if($plan->status ==1) {{ __('Active') }} @else {{ __('Deactive') }} @endif |
@can('instructor-plan-subscription.edit')
{{ __("Edit")}}
@endcan
@can('instructor-plan-subscription.delete')
{{ __("Delete")}}
@endcan
|