firstcommit

This commit is contained in:
2025-08-17 16:23:14 +05:45
commit 76bf4c0a18
2648 changed files with 362795 additions and 0 deletions

View File

View File

View File

View File

@@ -0,0 +1,37 @@
@extends('admin::layouts.master')
@section('title')
Create Page
@endsection
@section('breadcrumb')
@php
$breadcrumbData = [
[
'title' => 'Page',
'link' => 'null',
],
[
'title' => 'Dashboard',
'link' => route('dashboard'),
],
[
'title' => 'Pages',
'link' => null,
],
[
'title' => 'Add Page',
'link' => null,
],
];
@endphp
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
@endsection
@section('content')
<div class="row">
<form action="{{ route('cms.pages.store') }}" method="POST" enctype="multipart/form-data">
@csrf
@include('page::partial.form')
</form>
</div>
@endsection

View File

@@ -0,0 +1,39 @@
@extends('admin::layouts.master')
@section('title')
Update Page
@endsection
@section('breadcrumb')
@php
$breadcrumbData = [
[
'title' => 'Page',
'link' => 'null',
],
[
'title' => 'Dashboard',
'link' => route('dashboard'),
],
[
'title' => 'Pages',
'link' => null,
],
[
'title' => 'Update Page',
'link' => null,
],
];
@endphp
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
@endsection
@section('content')
<div class="row">
<form action="{{ route('cms.pages.update', ['uuid' => $page->uuid]) }}" method="POST" enctype="multipart/form-data">
@csrf
@method('PUT')
@include('page::partial.form')
</form>
</div>
@endsection

View File

@@ -0,0 +1,137 @@
@extends('admin::layouts.master')
@section('title')
Page
@endsection
@section('breadcrumb')
@php
$breadcrumbData = [
[
'title' => 'Page',
'link' => 'null',
],
[
'title' => 'Dashboard',
'link' => route('dashboard'),
],
[
'title' => 'Pages',
'link' => null,
],
];
@endphp
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
@endsection
@section('content')
<!-- pages List Table -->
<div class="card">
<div class="row">
<div class="col-md-6">
<h4 class="card-header">List of Page</h4>
</div>
<div class="col-md-6">
<div class="flex-column flex-md-row">
<div class="dt-action-buttons text-end pt-3 px-3">
<div class="dt-buttons btn-group flex-wrap">
<a href="{{ route('cms.pages.create') }}"
class="btn btn-secondary create-new btn-primary d-none d-sm-inline-block text-white">
<i class="bx bx-plus me-sm-1"></i>
Add New
</a>
</div>
</div>
</div>
</div>
</div>
<div class="card-datatable table-responsive">
<table class="datatables-users table table-hover border-top">
<thead class="table-light">
<tr>
<th>S.N</th>
<th>Title With Image</th>
<th>Page</th>
<th>Display Order</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody class="table-border-bottom-0">
@if(count($pages) > 0)
@foreach ($pages ?? [] as $page)
<tr>
<td>
#{{ $loop->iteration }}
</td>
<td>
<div class="d-flex align-items-center me-3">
<img src="{{ asset($page->image_path ? 'storage/uploads/' . $page->image_path : 'backend/uploads/images/no-Image.jpg') }}"
alt="Image" class="rounded me-3" height="40" width="60" style="object-fit: cover">
<div class="card-title mb-0">
<h6 class="mb-0 text-capitalize">{{ $page->title }}</h6>
<small class="text-muted">{{ Str::limit($page->summary, 80) }}</small>
</div>
</div>
</td>
<td>
<span class="badge bg-label-primary text-uppercase"> {{ str_replace('_',' ',$page->code) }}</span>
</td>
<td>
{{ $page->display_order }}
</td>
<td>
<span class="badge bg-label-{{ $page->status == 'active' ? 'success' : 'danger' }}">
{{ $page->status }}
</span>
</td>
<td>
<div class="dropdown">
<button type="button" class="btn p-0 dropdown-toggle hide-arrow"
data-bs-toggle="dropdown">
<i class="bx bx-dots-vertical-rounded"></i>
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="{{ route('cms.pages.edit', ['uuid' => $page->uuid]) }}">
<i class="bx bx-edit-alt me-1"></i> Edit
</a>
@if($page->code == 'normal')
<form method="POST" action="{{ route('cms.pages.delete', ['uuid' => $page->uuid]) }}"
id="deleteForm_{{ $page->uuid }}" class="dropdown-item">
@csrf
@method('DELETE')
<button type="submit" class="border-0 bg-transparent deleteBtn"
style="color:inherit"><i class="bx bx-trash me-1"></i> Delete</button>
</form>
@endif
</div>
</div>
</td>
</tr>
@endforeach
@else
<tr>
<td colspan="7">No record found.</td>
</tr>
@endif
</tbody>
</table>
</div>
<div class="px-3">
{{ $pages->links('admin::layouts.partials.pagination') }}
</div>
</div>
@endsection
{{-- style --}}
@push('required-styles')
@include('admin::vendor.dataTables.style')
@endpush
{{-- script --}}
@push('required-scripts')
@include('admin::vendor.dataTables.script')
@endpush

View File

@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Module - {{ config('app.name', 'Laravel') }}</title>
<meta name="description" content="{{ $description ?? '' }}">
<meta name="keywords" content="{{ $keywords ?? '' }}">
<meta name="author" content="{{ $author ?? '' }}">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
{{-- Vite CSS --}}
{{-- {{ module_vite('build-page', 'resources/assets/sass/app.scss') }} --}}
</head>
<body>
@yield('content')
{{-- Vite JS --}}
{{-- {{ module_vite('build-page', 'resources/assets/js/app.js') }} --}}
</body>

View File

@@ -0,0 +1,125 @@
@push('required-styles')
@include('admin::vendor.select2.style')
@endpush
<div class="row">
<div class="col-8">
<div class="card mb-4">
<h5 class="card-header">Basic Details</h5>
<hr class="my-0">
<div class="card-body">
<div class="row" x-data="generateSlug()" x-init="title = '{{ addslashes(old('title', $page->title ?? '')) }}'; slug = '{{ addslashes(old('slug', $page->slug ?? '')) }}';">
<div class="mb-3 col-md-6 fv-plugins-icon-container">
<label for="firstName" class="form-label">Title<span class="text-danger"> *</span></label>
<input class="form-control" type="text" id="firstName" x-model="title" x-on:input="updateSlug()" name="title"
value="{{ old('title', $page->title ?? '') }}" placeholder="e.g:About Us">
<div class="fv-plugins-message-container invalid-feedback"></div>
@if ($errors->has('title'))
<div class="alert alert-danger">{{ $errors->first('title') }}</div>
@endif
</div>
<div class="mb-3 col-md-6 fv-plugins-icon-container">
<label for="lastName" class="form-label">Slug<span class="text-danger"> *</span></label>
<input class="form-control" type="text" x-model="slug" name="slug" id=""
value="{{ old('slug', $page->slug ?? '') }}" placeholder="e.g:about-us">
<div class="fv-plugins-message-container invalid-feedback"></div>
</div>
<div class="mb-3 col-md-12">
<label for="exampleFormControlTextarea1" class="form-label">Summary<span class="text-danger"> *</span></label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" name="summary"
placeholder="e.g:Summary here..">{{ old('summary', $page->summary ?? '') }}</textarea>
</div>
<div class="mb-3 col-md-12">
<label for="exampleFormControlTextarea1" class="form-label">Description</label>
<textarea class="form-control" id="advance" rows="7" name="description" placeholder="Description here..">{{ old('description', $page->description ?? '') }}</textarea>
</div>
<div class="mt-2">
<button type="submit" class="btn btn-primary me-2"> {{ !isset($page)?'Save Changes':'Update Changes'}}</button>
<button type="reset" class="btn btn-label-secondary">Reset</button>
</div>
</div>
</div>
<!-- /Account -->
</div>
</div>
{{-- Right sidebar --}}
<div class="col-4">
<div class="card mb-4">
<h5 class="card-header">Images</h5>
<div class="card-body">
<div class="d-flex align-items-start align-items-sm-center gap-4">
<img src="{{ asset(!empty($page->image_path)? 'storage/uploads/' . $page->image_path : 'backend/uploads/images/no-Image.jpg') }}" alt="banner-image input-file" class="d-block rounded show-image" height="100" width="100" />
<div class="button-wrapper">
<label for="upload" class="btn btn-sm btn-primary me-2 mb-4" tabindex="0">
<span class="d-none d-sm-block">Upload</span>
<i class="bx bx-upload d-block d-sm-none"></i>
<input type="file" id="upload" class="input-file" name="image" hidden
accept="image/png, image/jpeg" />
</label>
<button type="button" class="btn btn-sm btn-label-secondary image-reset mb-4">
<i class="bx bx-reset d-block d-sm-none"></i>
<span class="d-none d-sm-block">Reset</span>
</button>
<p class="mb-0">Allowed JPG, GIF or PNG.</p>
</div>
</div>
</div>
</div>
<div class="card mb-4">
<h5 class="card-header">Additional Details</h5>
<div class="card-body">
<div class="mb-3 col-md-12">
<label for="organization" class="form-label">Display Order<span class="text-danger"> *</span></label>
<input class="form-control" type="number" name="display_order" id=""
value="{{ old('display_order', $page->display_order ?? '') }}" placeholder="e.g:1">
</div>
<div class="mb-3 col-md-12">
<label for="language" class="form-label">Status<span class="text-danger"> *</span></label>
<div class="position-relative">
<select id="language select2Basic" class="select2 form-select select2-hidden-accessible"
data-select2-id="language" tabindex="-1" aria-hidden="true" name="status">
<option value="" data-select2-id="4">Select Status</option>
<option value="active"
{{ old('status', $page->status ?? '') == 'active' ? 'selected' : '' }}>
Active</option>
<option value="inactive"
{{ old('status', $page->status ?? '') == 'inactive' ? 'selected' : '' }}>Inactive
</option>
</select>
</div>
</div>
</div>
</div>
<div class="card mb-4">
<h5 class="card-header">Meta Details</h5>
<div class="card-body">
<div class="mb-3 col-md-12">
<label for="exampleFormControlTextarea1" class="form-label">Meta Title</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" name="meta_title">{{ old('meta_title', $page->pageMeta->meta_title ?? '') }}</textarea>
</div>
<div class="mb-3 col-md-12">
<label for="exampleFormControlTextarea1" class="form-label">Meta Description</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" name="meta_description">{{ old('meta_description', $page->pageMeta->meta_description ?? '') }}</textarea>
</div>
<div class="mb-3 col-md-12">
<label for="exampleFormControlTextarea1" class="form-label">Meta Keywords</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" name="meta_keywords">{{ old('meta_keywords', $page->pageMeta->meta_keywords ?? '') }}</textarea>
</div>
</div>
</div>
</div>
</div>
@push('required-scripts')
@include('admin::vendor.tinymce.script')
@include('admin::vendor.select2.script')
@endpush