- Added DocumentController for handling document uploads and management. - Created Document model with necessary attributes and relationships. - Implemented DocumentService for business logic related to documents. - Set up routes for document management in both web and API contexts. - Developed views for document upload using Dropzone for file handling. - Included necessary assets and styles for the Document module. - Created migration for documents table with appropriate fields. - Added configuration and service provider for the Document module.
51 lines
2.1 KiB
PHP
51 lines
2.1 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<x-dashboard.breadcumb :title="$title" />
|
|
@if ($errors->any())
|
|
<x-flash-message type="danger" :messages="$errors->all()" />
|
|
@endif
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6 col-xl-6">
|
|
<div class="card profile-card">
|
|
@include('document::document.form')
|
|
</div>
|
|
</div>
|
|
|
|
{{-- <div class="col-lg-xl-8 col-lg-9">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
@php
|
|
$columns = [
|
|
[
|
|
'title' => '<input type="checkbox" id="select-all">',
|
|
'data' => 'checkbox',
|
|
'name' => 'checkbox',
|
|
'orderable' => false,
|
|
'searchable' => false,
|
|
'printable' => false,
|
|
'exportable' => false,
|
|
],
|
|
['title' => 'Document', 'data' => 'name', 'name' => 'name'],
|
|
['title' => 'Type', 'data' => 'type', 'name' => 'type'],
|
|
['title' => 'Size', 'data' => 'size', 'name' => 'size'],
|
|
['title' => 'Upload Date', 'data' => 'created_at', 'name' => 'created_at'],
|
|
[
|
|
'title' => 'Action',
|
|
'data' => 'action',
|
|
'orderable' => false,
|
|
'searchable' => false,
|
|
],
|
|
];
|
|
@endphp
|
|
|
|
<x-data-table-script :route="route('gallery.index')" :reorder="route('gallery.reorder')" :columns="$columns" />
|
|
</div>
|
|
</div>
|
|
</div> --}}
|
|
</div>
|
|
</div>
|
|
@endsection
|