Skip to content

Releases: Shipu/themevel

Fixed Asset Url

23 Nov 10:08
5d60c20
Compare
Choose a tag to compare

Fixed Asset Url

Yaml Bug Fixed

23 Nov 07:39
4a5d3b7
Compare
Choose a tag to compare

Yaml Bug Fixed

Update for Laravel 5.5

19 Nov 19:23
8ed71ac
Compare
Choose a tag to compare
  • Update for laravel 5.5
  • Fixed resource assets url

Theme type middleware

07 Jun 22:02
Compare
Choose a tag to compare

Now you can create unlimited types of theme. For example: backend theme, frontend theme etc. Here in config file theme types where you can set default theme using particular types middleware.

In app/theme.php :

'types'=> [
    'enable' => true, // default false
    'middleware' => [
         'middlewareName'      => 'themeName',
    ]
],

For Example route :

Route::get('/', function () {
    return view('welcome');
})->middleware('middlewareName');

Minor Bug Fixed

22 May 10:08
Compare
Choose a tag to compare

Minor Bug Fixed

Theme type namespace

21 May 13:59
Compare
Choose a tag to compare

In theme.json just add

{
  "type": "backend"
}

Now you can call view like below statements :

view('backend::welcome');

v1.0

20 May 16:40
Compare
Choose a tag to compare

First Release