@extends('layouts.master') @section('title',trans('dashboard.sub_plans')) @section('css') @endsection @section('page-content')
@if (count($errors) > 0) @foreach ($errors->all() as $error) @endforeach @endif @if (session()->has('add')) @endif @if (session()->has('edit')) @endif @if (session()->has('delete')) @endif
@foreach($plans as $plan) @endforeach
# @lang('dashboard.name') @lang('dashboard.months_number') @lang('dashboard.price') @lang('dashboard.ads_count') @lang('dashboard.operations')
{{$plan->id}} {{(Illuminate\Support\Facades\App::getLocale()=='ar')? $plan->name_ar : $plan->name_en}} {{$plan->month_number}} {{$plan->price}} {{$plan->ads_count}}
@endsection @section('js') @endsection