Creating Custom Templates
php artisan vendor:publish --tag="curtain-views"touch resources/views/vendor/curtain/templates/custom.blade.php@extends('curtain::templates.base')
@push('styles')
{{-- Add your custom styles here --}}
<link href="https://fonts.googleapis.com/css2?family=Your+Font:wght@400;700&display=swap" rel="stylesheet">
@endpush
@section('content')
<div class="your-custom-container">
{{-- Include essential components --}}
@include('curtain::components.status')
@include('curtain::components.countdown')
{{-- Add your custom content --}}
</div>
@endsectionLast updated