laravel-theme
laravel-theme copied to clipboard
Theme and asset managing for laravel
How can add a external css or js like:
Hello i have in assets... style.css color.css and plugins.css... scripts.js and plugins.js $asset->themePath()->add([ ['style', 'css/style.css'], ['script', 'js/scripts.js'] ]); how can add to this?
hello any can help me? this work correctly (direct in blade) return view('index')->with('posts',$post)->with('recent_posts',$rcnt_post); but with themes no work (with laravel-theme) return Theme::view('index')->with('posts',$post)->with('recent_posts',$rcnt_post);
Hi, I'm using Laravel 7 and when I run `php artisan config:cache` command I get the following error: ``` In ConfigCacheCommand.php line 71: Your configuration files are not serializable. In...
Hi, How can I compile the gulpfile.js within the themes? I don't see in the docs how to do this.
Adding ThemeRepository capability to allow other developer to create theme as a separated Laravel package and then register them via ThemeRepository. At the custom theme ServiceProvider, one could register it...
Added new code to fallback to theme layout.blade.php first before falling to the default global layout.blade.php
How to use @yield('content') in master blade or in layout blade and how we will add @section('content') some content @endsection @section('another') @endsection
$path appears to be undefined when calling the Theme::all() command.
Hello, i saw in the original repo the following pull request: https://github.com/teepluss/laravel-theme/pull/122 it would be nice if you could integrate the thing here. :)