adding country flags, html meta stuff, web routes file, js components

This commit is contained in:
2022-05-04 13:02:19 -06:00
parent de53c3c882
commit bafa9dba26
24 changed files with 1845 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class CountryFlags extends Component
{
/**
* Create a new component instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.country-flags');
}
}