1. Go to this page and download the library: Download rukhsar/larabread library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Rukhsar\LaraBread\Contracts\LaraBreadContract;
use Rukhsar\LaraBread\LaraBreadItem;
class PageController extends Controller
{
public function index(LaraBreadContract $breadcrumbs)
{
$breadcrumbs->addBread([
new LaraBreadItem('Home', '/'),
]);
return view('welcome');
}
public function page1(LaraBreadContract $breadcrumbs)
{
$breadcrumbs->addBread([
new LaraBreadItem('Home', '/'),
new LaraBreadItem('Page1','/page1'),
]);
return view('page1');
}
}