@extends('layouts.master') @section('title',trans('dashboard.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.country') @lang('dashboard.name') @lang('dashboard.price_per_month') @lang('dashboard.duration_per_day') @lang('dashboard.ads_count') @lang('dashboard.best_seller') @lang('dashboard.operations')
{{$plan->id}} {{Illuminate\Support\Facades\App::getLocale()=='ar'? $plan->country->name_ar:$plan->country->name_en}} {{Illuminate\Support\Facades\App::getLocale()=='ar'? $plan->name_ar:$plan->name_en}} {{$plan->price_per_month}} {{$plan->duration_per_day}} {{$plan->ads_count}} {{$plan->best_seller}} @lang('dashboard.plan_features') @lang('dashboard.sub_plans')
@endsection @section('js') @endsection