Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../config/./../database/../.git/../bootstrap/../resources/./views/customer/form
الملفات الموجودة في هذا الـ Path:
.
..
create.blade.php
edit.blade.php
form.blade.php
form_data_index.blade.php
index.blade.php
view.blade.php

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

@extends('layouts.customer')

@section('title') Form @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 mt-3">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">@lang('customer.list')</h2>
                        <div class="float-right">
                            <a class="btn btn-primary" href="{{route('customer.forms.create')}}">@lang('customer.new')</a>
                        </div>
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body">
                        <table id="addformtable" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th>@lang('customer.title')</th>
                                <th>@lang('customer.created_at')</th>
                                <th>@lang('customer.action')</th>
                            </tr>
                            </thead>

                        </table>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->
@endsection

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