File "index.blade.php"
Full Path: /home/trinadezambia/public_html/admin_panel/resources/views/section/index.blade.php
File size: 6.04 KB
MIME-type: text/html
Charset: utf-8
@extends('layouts.master')
@section('title')
{{ __('section') }}
@endsection
@section('content')
<div class="content-wrapper">
<div class="page-header">
<h3 class="page-title">
{{ __('manage').' '.__('section') }}
</h3>
</div>
<div class="row">
<div class="col-md-6 grid-margin">
<div class="card">
<div class="card-body">
<h4 class="card-title">
{{ __('create').' '.__('section') }}
</h4>
<form class="pt-3 section-create-form" id="create-form" action="{{ route('section.store') }}" method="POST" novalidate="novalidate">
<div class="row">
<div class="form-group col-sm-6 col-md-12">
<label>{{ __('name') }} <span class="text-danger">*</span></label>
<input name="name" type="text" placeholder="{{ __('name') }}" class="form-control" required/>
</div>
</div>
<input class="btn btn-theme float-right" id="create-btn" type="submit" value={{ __('submit') }}>
</form>
</div>
</div>
</div>
<div class="col-md-6 grid-margin stretch-card">
<div class="card">
<div class="card-body">
<h4 class="card-title">
{{ __('list').' '.__('section') }}
</h4>
<div class="d-block">
<div class="">
<div class="col-12 text-right d-flex justify-content-end text-right align-items-end">
<b><a href="#" class="table-list-type active mr-2" data-id="0">{{ __('all') }}</a></b> |
<a href="#" class="ml-2 table-list-type" data-id="1">{{ __('Trashed') }}</a>
</div>
</div>
</div>
<table aria-describedby="mydesc" class='table' id='table_list'
data-toggle="table" data-url="{{ route('section.show',[1]) }}"
data-click-to-select="true" data-side-pagination="server"
data-pagination="true" data-page-list="[5, 10, 20, 50, 100, 200]"
data-search="true" data-toolbar="#toolbar" data-show-columns="true"
data-show-refresh="true" data-fixed-columns="false" data-fixed-number="2"
data-fixed-right-number="1" data-trim-on-search="false"
data-mobile-responsive="true" data-sort-name="id"
data-sort-order="desc" data-maintain-selected="true"
data-query-params="queryParams" data-show-export="true"
data-export-options='{"fileName": "section-list-<?= date('d-m-y') ?>","ignoreColumn": ["operate"]}'
data-escape="true">
<thead>
<tr>
<th scope="col" data-field="id" data-sortable="true" data-visible="false">{{__('id')}}</th>
<th scope="col" data-field="no">{{__('no.')}}</th>
<th scope="col" data-field="name">{{__('name')}}</th>
<th scope="col" data-field="created_at" data-sortable="true" data-visible="false">{{__('created_at')}}</th>
<th scope="col" data-field="updated_at" data-sortable="true" data-visible="false">{{__('updated_at')}}</th>
<th scope="col" data-field="operate" data-events="sectionEvents" data-escape="false">{{__('action')}}</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">{{__('edit').' '.__('section')}}</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<form class="pt-3 section-edit-form" id="edit-form" action="{{ url('section') }}" novalidate="novalidate">
<input type="hidden" name="edit_id" id="edit_id" value=""/>
<div class="modal-body">
<div class="row">
<div class="form-group col-sm-6 col-md-12">
<label>{{__('name')}} <span class="text-danger">*</span></label>
<input name="name" id="edit_name" type="text" placeholder="{{__('name')}}" class="form-control" required/>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">{{__('close')}}</button>
<input class="btn btn-theme" type="submit" value={{ __('submit') }} />
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection