@extends('user::layouts.backend-master') @section('breadcrumb_title', 'Create Theme') @section('content')

Create New Theme

Use the command below to create a new theme with the theme generator.

php artisan theme:create theme_name --author="Your Name" --description="Your theme description"

Theme Structure

  • cms/themes/your_theme/ Root directory of your theme
  • assets/ Theme assets (CSS, JS, images)
  • functions/ Theme functions and helpers
  • layouts/ Theme layout templates
  • partials/ Reusable template parts
  • views/ Theme template files
  • config.php Theme configuration
  • theme.json Theme metadata
@endsection @push('scripts') @endpush