1. Go to this page and download the library: Download johntrickett86/tall-mobile 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/ */
johntrickett86 / tall-mobile example snippets
use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function boot()
{
Paginator::defaultView('pagination::default');
Paginator::defaultSimpleView('pagination::simple-default');
}
}
<x-partials.headers.mobile-header-main :scroll-hide="true" /> // hides the header when scrolling down
<x-partials.headers.mobile-header-main :scroll-hide="false" /> // fixes the header to the top of the page
<x-partials.headers.mobile-header-main :scroll-hide="true" title="Settings" /> // hides the header when scrolling down
<x-partials.headers.mobile-header-main :scroll-hide="false" title="Settings" /> // fixes the header to the top of the page
// Update the number of grid columns to match the number of toolbar items
<div class="grid h-full w-full grid-cols-2">
<x-elements.toolbar-button
:href="route('home')"
:active="request()->routeIs('home')"
icon="home"
label="Home"
/>
<x-elements.toolbar-button
:href="route('settings')"
:active="request()->routeIs('settings')"
icon="settings"
label="Settings"
/>
</div>
// Modal Example
<x-toolbar
:scroll-hide="true" // hides the toolbar when scrolling down
:fab="true" // shows the floating action button
fabIcon="plus" // the icon to show in the floating action button
fabType="modal" // can be modal or link
modal-name="fab-modal" // the name of the modal blade component
/>
// Link Example
<x-toolbar
:scroll-hide="false" // fixes the toolbar to the bottom of the page
:fab="true" // shows the floating action button
fabIcon="arrow-right" // the icon to show in the floating action button
fabType="link" // can be modal or link
:href="route('home')"
/>
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.