@extends('backend.layouts.app') @section('title') {{ __('plan_list') }} @endsection @section('content')
@if (isset($plan->descriptions) && isset($plan->descriptions[0])) {!! $plan->descriptions[0]->description !!} @else @php $default_description = $plan_descriptions->where('plan_id', $plan->id)->first(); @endphp @if ($default_description && $default_description->description) {!! $default_description->description !!} @else {!! __('no_description_has_been_added_to_this_language') !!} @endif @endif
{{ __('there_is_no_plan_found_in_this_page') }}.
@if (userCan('plan.create')) {{ __('add_your_first_plan') }} @endif