Import css in react js

const Header = () => { return ( <> <h1 style={{backgroundColor: "lightblue"}}>Hello Style!</h1> <p>Add a little style!</p> </> ); } const Header = () => { const myStyle = {…

0 Comments

Laravel insert and display multiple records

View: <div class="container card" style="padding:20px"> @if (session('msg')) <div class="alert alert-success"> {{ session('msg') }} </div> @endif <h3 style="text-align: center;">Registration Form</h3> <form action="{{route('submit_records')}}" method="post"> <div class="form-group"> <label>Name</label> <input type="text" name="name" id="name" class="form-control"…

0 Comments

Laravel Ajax Crud

This article will give you example of laravel ajax crud example. you can understand a concept of laravel ajax crud example tutorial. I explained simply about laravel  jquery ajax crud…

0 Comments

Laravel fetch data in details

where clause: $users = DB::table('users') ->where('votes', '=', 100) ->where('age', '>', 35) ->get(); $users = DB::table('users') ->where('name', 'like', 'T%') ->get(); $users = DB::table('users')->where([ ['status', '=', '1'], ['subscribed', '<>', '1'], ])->get(); $users…

0 Comments