@extends('admin.layouts.master')
@section('main_content')
@include('admin.layouts.nav')
@include('admin.layouts.sidebar')
| {{ __('SL') }} |
{{ __('Photo') }} |
{{ __('Name') }} |
{{ __('Price') }} {{ $global_setting->currency_symbol }} |
{{ __('Billing Cycle') }} |
{{ __('Features') }} |
{{ __('Action') }} |
@foreach($packages as $package)
| {{ $loop->iteration }} |
|
{{ $package->name }} |
{{ $global_setting->currency_symbol }}{{ $package->price }} |
{{ $package->billing_cycle }} |
{{ __('Manage Features') }}
|
|
@endforeach
@endsection