Header 1

https://epicbootstrap.com/snippets/header-blue <link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script> <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,…

0 Comments

MainActivity.java intro in android studio

A. MainActivity.java package com.example.myfirstandroidapp; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } } onCreate function is loading during open…

0 Comments

Custom helper in laravel

Create a file inside app folder like helper.php. Helper function will load automatically on all pages. First i have to register my helper function in autoload.php file. Go to composer.json…

0 Comments

Variable pass in components in laravel

A. Router Route::get('/', function () { return view('index', ['data' => 'Hi my name is paan']); }); B. index.blade.php <x-cart type="text" name="username" label="Username" :data="$data" /> <x-cart type="password" name="password" label="Password" :data="$data" />…

0 Comments

Components in laravel

A. Write this command php artisan make:component HeaderComponent ( We can use component for reusable like react, vue and angular ) ( Go  to app/view/components/HeaderComponent.php ) // class based file…

0 Comments

Form Validator in laravel

Laravel form validation is a process where Laravel validates the data sent by the end-user to the application to ensure that the user sends the right data with the format needed…

0 Comments

Master Template in laravel

The Blade Master Template is going to be your best friend. In the last episode we started to work with rendering views in Laravel. Recall, this amounts to doing something…

0 Comments