Viewing file: index.blade.php (4.82 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.app', ['title' => __('Pages')])
@section('content') <div class="header bg-gradient-primary pb-8 pt-5 pt-md-8"> </div>
<div class="container-fluid mt--7"> <div class="row"> <div class="col"> <div class="card shadow"> <div class="card-header border-0"> <div class="row align-items-center"> <div class="col-8"> <h3 class="mb-0">{{ __('Plans') }}</h3> </div> <div class="col-4 text-right"> <a href="{{ route('plans.create') }}" class="btn btn-sm btn-primary">{{ __('Add plan') }}</a> </div> </div> </div>
<div class="col-12"> @include('partials.flash') </div> @if(count($plans)) <div class="table-responsive"> <table class="table align-items-center table-flush"> <thead class="thead-light"> <tr> <th scope="col">{{ __('Name') }}</th> <th scope="col">{{ __('Price') }}</th> <th scope="col">{{ __('Period') }}</th> @if (config('app.issd')) <th scope="col">{{ __('Orders') }}</th> @else <th scope="col">{{ __('Ordering') }}</th> @endif <th scope="col"></th> </tr> </thead> <tbody> @foreach ($plans as $plan) <tr> <td><a href="{{ route('plans.edit', $plan) }}">{{ $plan->name }} </a></td> <td>{{ $plan->price }}</td> <td>{{ $plan->period == 1 ? __("Monthly") : __("Anually") }}</td> @if (config('app.issd')) <td>{{ $plan->limit_orders==0?"∞": $plan->limit_orders }}</td> @else <td>{{ $plan->enable_ordering == 1 ? __("Enabled") : __("Disabled") }}</td> @endif <td class="text-right"> <div class="dropdown"> <a class="btn btn-sm btn-icon-only text-light" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fas fa-ellipsis-v"></i> </a> <div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow"> <form action="{{ route('plans.destroy', $plan) }}" method="post"> @csrf @method('delete') <a class="dropdown-item" href="{{ route('plans.edit', $plan) }}">{{ __('Edit') }}</a> <button type="button" class="dropdown-item" onclick="confirm('{{ __("Are you sure you want to delete this plan?") }}') ? this.parentElement.submit() : ''"> {{ __('Delete') }} </button> </form> </div> </div> </td> </tr> @endforeach </tbody> </table> </div> @endif <div class="card-footer py-4"> @if(count($plans)) <nav class="d-flex justify-content-end" aria-label="..."> {{ $plans->links() }} </nav> @else <h4>{{ __('You don`t have any plans') }} ...</h4> @endif </div> </div> </div> </div>
@include('layouts.footers.auth') </div> @endsection
|