Commit b734c55a by Francisco Salazar

Readme, validate url, delete slider partial

parent 5a6414f6
# Package products OneStartup
**onestartup/slider** is a module slider for websites
# Installation
- Run this in the terminal
```php
composer require onestartup/slider
```
- add the ServiceProvider to the providers array in config/app.php
```php
Onestartup\Slider\SliderServiceProvider::class,
```
- add the ServiceProvider to the alias array in config/app.php
```php
'Slide' => Onestartup\Slider\Model\Slider::class,
```
- Run migration
```php
php artisan migrate
```
- run serv
```php
php artisan serve
```
- test in the view the slider
```php
@foreach(Slide::getSlides("-insert slide name-") as $slider)
{{$slider}}
@endforeach
```
\ No newline at end of file
{
"name": "onestartup/banner",
"description": "blog for websites onestartup",
"name": "onestartup/slider",
"description": "sliders for websites onestartup",
"type": "library",
"license": "Apache-2.0",
"authors": [
......
......@@ -27,7 +27,7 @@ class RequestCarousel extends FormRequest
'title' => 'required|max:255',
'subtitle' => 'max:255',
'description'=> 'max:255',
'link' => 'max:455',
'link' => 'url|max:455',
'portada' => 'image',
];
}
......
<p>
{{Slide::getSlides("-inserta el nombre del slide-")}}
</p>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment