MIF_E31210538/app/View/Components/theme/auth/Authentication__Footer.php

29 lines
532 B
PHP

<?php
namespace App\View\Components\theme\auth;
use Illuminate\View\Component;
class Authentication__Footer 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.theme.auth.authentication__-footer');
}
}