Giter Club home page Giter Club logo

laravel-active-route's Introduction

Laravel Active Route

v1.0

Helper class for Laravel applications to get active class base on current route name.

Installation

Install using composer

composer require rukhsar/laravel-active-route

Add below line to your service providers array in config/app.php

Rukhsar\ActiveRoute\ActiveRouteServiceProvider::class,

Add below line to your aliases array in config/app.php

'Active'    =>  Rukhsar\ActiveRoute\Facades\Active::class,

Publish config file using

php artisan vendor:publish --provider="Rukhsar\ActiveRoute\ActiveRouteServiceProvider" --tag="config"

Config File

In config/activeroute.php you can modify the css active class which notmally active if you are using bootsrap.

return [

    // The default css class value if the request match given route name
    'class' => 'active',

];

Usage

You can use this package in different ways like...

Active::route('route.name'); // Facade example
app('active')->route('route.name'); // Application container example
active_route('route.name'); // Helper function

// Wildcard exmaples

Active::route('route.name.*');
active_route('route.name.*');

// Multiple Routes

Active::route(['route.name1.*', 'route.name2.*']);
active_route(['route.name1.*', 'route.name2.*']);

You can also use custom blade directive in your blade templates.

@ifActiveRoute('route.name')
    <p>True</p>
@else
    <p>False</p>
@endif

Practical use in application

<li class="item {{ active_route('admin.index') }}">
    <a href="admin/index">Dashboard</a>
</li>

This project is open-sourced software licensed under the MIT License.

laravel-active-route's People

Contributors

roboonl avatar rukhsar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.