Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../resources/./views/front/././../admin/plans
الملفات الموجودة في هذا الـ Path:
.
..
create.blade.php
edit.blade.php
form.blade.php
index.blade.php
requests.blade.php

مشاهدة ملف: index.blade.php

@extends('layouts.admin')

@section('title') Plans @endsection

@section('extra-css')
    <link rel="stylesheet" href="{{asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
    <link rel="stylesheet" href="{{asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">
@endsection

@section('content')
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-12">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">@lang('admin.plans.plan')</h2>
                        <div class="float-right">
                        <a class="btn btn-primary" href="{{route('admin.plans.create')}}">@lang('admin.form.button.new')</a>
                        <a class="btn btn-warning" href="{{route('admin.plan.requests')}}">@lang('admin.form.button.request')</a>
                        </div>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body">
                        <table id="plans" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th>@lang('admin.table.title')</th>
                                <th>@lang('admin.table.limit')</th>
                                <th>@lang('admin.form.contact_limit')</th>
                                <th>@lang('admin.table.price')</th>
                                <th>@lang('admin.table.status')</th>
                                <th>@lang('admin.table.created_at')</th>
                                <th>@lang('admin.table.action')</th>
                            </tr>
                            </thead>
                        </table>
                    </div>
                </div>
            </div>
        </div>
    </section>
@endsection

@section('extra-scripts')
    <script src="{{asset('js/admin/plan.js')}}"> </script>
@endsection