@extends('Frontend.Layouts.modal', ['modal_class' => 'modal-lg']) @section('title') {{ trans('admin.device_plans') }} @stop @section('body')
{!! Form::label('entity', trans('validation.attributes.device_id')) !!} {!! Form::select('entity', $devices, $device_id, ['class' => 'form-control', 'id' => 'entity-select']) !!}
@foreach ($plans as $plan)
{{ $plan->title }}
{{ trans('front.duration') }} {{ $plan->duration_text }}
{{ trans('global.price') }} {{ $plan->price }}
@endforeach
@stop @section('buttons') @stop