laravel select all data from table code example
Example 1: get all data eloquent laravel
Blog::all();
$posts = Blog::all();
Example 2: laravel select count
$count = DB::table('category_issue')->count();
Example 3: laravel find query
$flight = App\Models\Flight::find(1);
$flight = App\Models\Flight::where('active', 1)->first();
$flight = App\Models\Flight::firstWhere('active', 1);
Example 4: laravel find query
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Flight extends Model
{
public $timestamps = false;
}