How to create custom blade directive in laravel ?

How to create custom blade directive in laravel ?

In this article, We’ll see how we can create a custom blade directive in laravel. Blade allows you to define your own custom directives using the directive method. In laravel’s documentation, a new blade directive creates under boot method in AppServiceProvider.php, but we’ll create a new provider, so lets create it using artisan command. addRead more about How to create custom blade directive in laravel ?[…]

How to Install Laravel – The PHP Framework

How to Install Laravel – The PHP Framework

Laravel is a open-source web application framework with expressive, elegant syntax. Laravel uses the Model-View-Controller approach, which allows great separation between logic and presentation. In this article, we’ll see step by step – How to install laravel? At first you must have composer installed on your system. Composer is an application-level package manager for theRead more about How to Install Laravel – The PHP Framework[…]