Answers for "check data if data available in both table using with laravel"

PHP
1

check table exists in db laravel

if (!Schema::hasTable('table_name')) {
    // Code to create table
}
Posted by: Guest on July-15-2020
1

validate data exist in database lara vel

$this->validate($request, [
        'email' => 'required|exists:user|email',
    ]);
Posted by: Guest on July-19-2021

Code answers related to "check data if data available in both table using with laravel"

Browse Popular Code Answers by Language