Super Sale Limited Time 50% OFF for All-Access Plans
Save 50% Now

Oliver html


Hi support,

Any instruction to integrate this oliver html into laravel?

https://keenthemes.com/products/oliver-html-pro


Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (1)


Hi

Here's how to integrate Oliver HTML Pro into Laravel:

Set Up Laravel Project:
composer create-project --prefer-dist laravel/laravel your_project_name
cd your_project_name

Organize Template Assets:
- Copy CSS files to public/css/
- Copy JavaScript files to public/js/
- Copy images to public/images/
- Copy any plugin files to public/plugins/

Convert HTML to Blade Templates:
- Create resources/views/oliver/ directory
- Convert HTML files to .blade.php format
- Create a master layout in resources/views/layouts/master.blade.php
- Extract header, footer, and sidebar into separate partials

Update Asset References:
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
<script src="{{ asset('js/script.js') }}"></script>

Set Up Routes:
Route::get('/', function () {
return view('oliver.index');
});

Thanks


Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Click any option to insert into your comment. Select text first to wrap it.
  • **text** to make things bold
  • *text* to emphasize
  • ### Heading to make headings
  • [link text](url) for links
  • ![alt text](image-url) to paste in an image
  • - item to make a list
  • 1. item to make an ordered list
  • > quote to quote somebody
  • `code` for single line of code
  • ```js ... ``` for JS code block
  • ```html ... ``` for HTML code block
  • ```scss ... ``` for SCSS code block
  • ```php ... ``` for PHP code block
  • --- for a horizontal rule
  • happy  :)
  • shocked  :|
  • sad  :(