@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} Plan for Country @endsection @section('content')

Plan Pricing - for {{ $country->country_name }}

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
@if(isset($plans) && !empty($plans)) @foreach($plans as $plan) @if(isset($plan->pricing) && !empty($plan->pricing)) @foreach($plan->pricing as $pricing) @endforeach @endif @endforeach @endif
Days Amount Status Action
{{$plan->plan_name}}
@if($cp_is_blocked) Blocked @else Active @endif
{{$pricing->plan_days}} Days
@endsection @section('custom_js') @endsection