PHP code example of chrisrhymes / bulma-blade-ui
1. Go to this page and download the library: Download chrisrhymes/bulma-blade-ui 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/ */
chrisrhymes / bulma-blade-ui example snippets
Fortify::loginView(fn () => view('bbui::auth.login'));
Fortify::registerView(fn () => view('bbui::auth.register'));
Fortify::requestPasswordResetLinkView(function () {
return view('bbui::auth.forgot-password');
});
Fortify::resetPasswordView(function ($request) {
return view('bbui::auth.reset-password', ['request' => $request]);
});
html
@php($users = User::paginate())
{{ $users->links('bbui::pagination') }}