@extends('admin.layouts.master') @section('title', 'Instructor Plan - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('Instructors Plan')}}
@can('instructor-plan-subscription.create') {{ __('Add Instructors Plan')}} @endcan
@foreach($plans as $plan) @endforeach
# {{ __('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
@endsection